home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / xfsrq < prev    next >
Text File  |  2006-01-09  |  2KB  |  77 lines

  1. #!/bin/sh -f
  2. #
  3. # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
  4. # This program is free software; you can redistribute it and/or modify it
  5. # under the terms of version 2 of the GNU General Public License as
  6. # published by the Free Software Foundation.
  7. # This program is distributed in the hope that it would be useful, but
  8. # WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. # Further, this software is distributed without any warranty that it is
  11. # free of the rightful claim of any third person regarding infringement
  12. # or the like.  Any license provided herein, whether implied or
  13. # otherwise, applies only to this software file.  Patent licenses, if
  14. # any, provided herein do not apply to combinations of this program with
  15. # other software, or any other product whatsoever.
  16. # You should have received a copy of the GNU General Public License along
  17. # with this program; if not, write the Free Software Foundation, Inc., 59
  18. # Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19. # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  20. # Mountain View, CA  94043, or:
  21. # http://www.sgi.com 
  22. # For further information regarding this notice, see: 
  23. # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
  24. #
  25.  
  26. OPTS=" -u"
  27. VERBOSE=false
  28. PATH="/bin:/usr/bin:/usr/sbin"
  29. USAGE="Usage: xfsrq [-guv] dumpfile"
  30.  
  31. while getopts "guv" c
  32. do
  33.     case $c in
  34.     g)    OPTS=" -g";;
  35.     u)    OPTS=" -u";;
  36.     v)    VERBOSE=true;;
  37.     \?)    echo $USAGE 1>&2
  38.         exit 2
  39.         ;;
  40.     esac
  41. done
  42.  
  43. _error()
  44. {
  45.     echo "Error: $@"
  46.     exit 1
  47. }
  48. [ -x /usr/bin/perl ] || _error "cannot find /usr/bin/perl"
  49. [ -x /usr/bin/expr ] || _error "cannot find /usr/bin/expr"
  50. [ -x /usr/sbin/setquota ] || _error "cannot find /usr/sbin/setquota"
  51.  
  52. set -- extra $@
  53. shift $OPTIND
  54. case $# in
  55.     1)    perl -pe 's/^fs = (.*)/\1 / && chomp' < $1 | \
  56.         while read fs id bsoft bhard isoft ihard; do
  57.             [ $VERBOSE ] && echo setting quota for id=$id dev=$fs
  58.             # blk conversion (512 -> 1024)
  59.             bsoft=`expr $bsoft / 2`
  60.             bhard=`expr $bhard / 2`
  61.             setquota $OPTS -n $id $fs $bsoft $bhard $isoft $ihard
  62.         done
  63.         ;;
  64.     *)    echo $USAGE 1>&2
  65.         exit 2
  66.         ;;
  67. esac
  68. exit 0
  69.